home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / con_005c.zip / CONCORD.RAR / SCRIPT.RAR / LISTTYPE.SCR < prev    next >
Text File  |  1997-04-25  |  1KB  |  28 lines

  1. ; LISTTYPE.SCR : Example script to change :
  2. ;                - the online message reader type
  3. ;                - the file listing type
  4. ;
  5. ; By default, not called from anywhere; you should add
  6. ; a Run Script menutype yourself to some menu to use
  7. ; this script file.
  8.  
  9. var %TEMP% = NUMBER
  10.  
  11. write "^C15,0;Select message reading type ^C7,0;:^M;"
  12. write "^C7,0;(^C14,0;1^C7,0;) ^C10,0;Brief (default)^M;"
  13. write "^C7,0;(^C14,0;2^C7,0;) ^C10,0;Huge (nice for high speed modems in VGA mode)^M;"
  14. write "^C15,0;Your selection ^C7,0;(^C14,0;~11,~22^C7,0;) [^C14,0;1^C7,0;] : ^W;^M;^M;"
  15. set %TEMP% = (@ANSWER@-1)
  16. set @TYPE_READMSG@ = %TEMP%
  17.  
  18. write "^C15,0;Select file list type ^C7,0;:^M;"
  19. write "^C7,0;(^C14,0;1^C7,0;) ^C10,0;"
  20. write "FILENAME.EXT KBS MMDDYY DLS DESCRIPTION^M;"
  21. write "^C7,0;(^C14,0;2^C7,0;) ^C10,0;"
  22. write "FILENAME.EXT BYTES DD-MMM-YY [DLS] DESCRIPTION^M;"
  23. write "^C15,0;Your selection ^C7,0;(^C14,0;~11,~22^C7,0;) [^C14,0;1^C7,0;] : ^W;^M;^M;"
  24. set %TEMP% = (@ANSWER@-1)
  25. set @TYPE_FILELIST@ = %TEMP%
  26.  
  27. quit
  28.